ImageGear v26.3 - Updated
ImageGear.Core Assembly / ImageGear.Formats.XMP Namespace / ImGearXMPArray<T> Class / Contains Method
The object to locate in the ImGearXMPArray<T>.




In This Topic
    Contains Method (ImGearXMPArray<T>)
    In This Topic
    Determines whether an element is in the ImGearXMPArray<T>.
    Syntax
    'Declaration
     
    Public Function Contains( _
       ByVal item As T _
    ) As Boolean
    'Usage
     
    Dim instance As ImGearXMPArray(Of T)
    Dim item As T
    Dim value As Boolean
     
    value = instance.Contains(item)
    public bool Contains( 
       T item
    )
    public: bool Contains( 
       T* item
    ) 
    public:
    bool Contains( 
       T^ item
    ) 

    Parameters

    item
    The object to locate in the ImGearXMPArray<T>.

    Return Value

    true if item is found in the ImGearXMPArray<T>; otherwise - false.
    See Also